home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Add-On
/
Workbench Add-On - Volume 1.iso
/
Text
/
Misc
/
Smiley
/
smiley.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-02
|
359b
|
26 lines
/*
* s m i l e y . h
*
* DaviD W. Sanderson
*/
/*
* Each smiley has a face and a description.
*/
struct smiley
{
char *face;
char *desc;
};
/*
* faces[] is the array of smileys, nfaces is the number of elements
* in faces.
*
* Definitions for these are generated by mkfaces from faces.in.
*/
extern struct smiley faces[];
extern int nfaces;